home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / print / wc4g < prev    next >
Encoding:
Text File  |  1994-08-11  |  459 b   |  26 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4. CFLAGS =  -DMSDOS
  5.  
  6. all: wc4g.tag xprint.exe xprtscr.exe
  7.  
  8. .c.obj :
  9.     wcc386 $(CFLAGS) $*.c
  10.  
  11. xprint.exe:       wc4g xprint.obj
  12.     wlink N xprint.exe f xprint l x11,sys op st=30k,caseexact
  13.  
  14. xprtscr.exe:     wc4g xprtscr.obj
  15.     wlink N xprtscr.exe f xprtscr l x11,sys op st=30k,caseexact
  16.  
  17. wc4g.tag:
  18.     del *.tag
  19.     del *.obj
  20.     del *.map
  21.     del *.rsp
  22.     del *.cfg
  23.     del *.exe
  24.     echo >wc4g.tag
  25.  
  26.